feat(cli): add customer contact-verification commands#710
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 2 Skipped Deployments
|
Contributor
This was referenced Jul 19, 2026
Contributor
|
@greptileai review |
Contributor
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-contact-verification
branch
from
July 19, 2026 18:46
876fe21 to
daec001
Compare
ls-bolt
Bot
force-pushed
the
07-18-grid-cli-drift-fixes
branch
from
July 19, 2026 18:46
0364499 to
5e3d38f
Compare
Contributor
|
@greptileai review |
jklein24
marked this pull request as ready for review
July 20, 2026 21:50
jklein24
changed the base branch from
07-18-grid-cli-drift-fixes
to
graphite-base/710
July 20, 2026 22:15
jklein24
force-pushed
the
07-18-grid-cli-contact-verification
branch
from
July 20, 2026 22:15
daec001 to
7deef2d
Compare
jklein24
force-pushed
the
graphite-base/710
branch
from
July 20, 2026 22:15
5e3d38f to
21e79e4
Compare
Contributor
|
📌 Bolt Status 2026-07-20 22:16:15 UTC — ⚡ Agent |
jklein24
force-pushed
the
07-18-grid-cli-contact-verification
branch
from
July 20, 2026 22:16
7deef2d to
94287e3
Compare
pengying
approved these changes
Jul 20, 2026
jklein24
enabled auto-merge (squash)
July 20, 2026 22:25
Contributor
Author
Merge activity
|
pengying
approved these changes
Jul 21, 2026
pengying
approved these changes
Jul 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Adds customer contact-verification commands to the Grid CLI — the email/phone verification flow required in some regulatory jurisdictions (e.g. EU). Stacked on the CLI drift-fix PR.
New commands:
grid customers verify-email <customerId>—POST /customers/{id}/verify-emailgrid customers confirm-email <customerId> --code <code>—POST /customers/{id}/verify-email/confirmgrid customers verify-phone <customerId>—POST /customers/{id}/verify-phonegrid customers confirm-phone <customerId> --code <code>—POST /customers/{id}/verify-phone/confirmTest plan
cd cli && npm run build— clean compile.npm test— includes 4 new boundary tests asserting each command's method/path/body (34 tests total with the parent branch).Original PR: #703